home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1993 Michael D. Bayne.
- * All rights reserved.
- *
- * Please see the documentation accompanying the distribution for distribution and disclaimer information.
- */
-
- #include <exec/types.h>
- #include <exec/ports.h>
- #include <intuition/intuition.h>
-
- #include "/defs.h"
-
- struct lPrefObject {
- LONG Size;
- LONG Generations;
- LONG Density;
- };
-
- VOID defaults( struct bMessage *Msg )
- {
- static struct lPrefObject lPO = { 20L, 150L, 25L };
-
- Msg->bm_Mod = INVALID_ID;
- Msg->bm_Dep = 0;
-
- Msg->bm_Info = "Automaton Life Simulation";
- Msg->bm_Data = ( UBYTE * )( &lPO );
- }
-